(RandomAccessFile f)
| 977 | } |
| 978 | |
| 979 | static void WriteBindings(RandomAccessFile f) { |
| 980 | for (int i = 0; i < 256; i++) |
| 981 | if (ClientGlobals.keybindings[i] != null && ClientGlobals.keybindings[i].length() > 0) |
| 982 | try { |
| 983 | f.writeBytes("bind " + KeynumToString(i) + " \"" + ClientGlobals.keybindings[i] + "\"\n"); |
| 984 | } catch (IOException e) {} |
| 985 | } |
| 986 | |
| 987 | } |
no test coverage detected