File tree 3 files changed +7
-20
lines changed
3 files changed +7
-20
lines changed Original file line number Diff line number Diff line change 2
2
3
3
#define GAME_VERSION_MAJOR 0
4
4
#define GAME_VERSION_MINOR 2
5
- #define GAME_VERSION_REVSN 2
5
+ #define GAME_VERSION_REVSN 3
6
6
7
7
#ifndef GAME_BUILD_NUMBER
8
8
#define GAME_BUILD_NUMBER 0xff
Original file line number Diff line number Diff line change 1
- #ifndef WINDOW_LOGO_H
2
- #define WINDOW_LOGO_H
1
+ #pragma once
3
2
4
- enum { MESSAGE_NONE = 0 , MESSAGE_MISSING_PATCH = 1 , MESSAGE_MISSING_FONTS = 2 };
3
+ enum {
4
+ MESSAGE_NONE = 0 ,
5
+ MESSAGE_MISSING_PATCH = 1 ,
6
+ MESSAGE_MISSING_FONTS = 2
7
+ };
5
8
6
9
void window_logo_show (int show_patch_message );
7
-
8
- #endif // WINDOW_LOGO_H
Original file line number Diff line number Diff line change @@ -79,20 +79,6 @@ static void main_menu_draw_foreground() {
79
79
ui.draw ();
80
80
}
81
81
82
- static void button_click (int type, int param2) {
83
- // case 3:
84
- // window_scenario_selection_show(MAP_SELECTION_CUSTOM);
85
- // break;
86
- //
87
- // case 4:
88
- // if (!editor_is_present() || !game_init_editor()) {
89
- // window_plain_message_dialog_show(TR_NO_EDITOR_TITLE, TR_NO_EDITOR_MESSAGE);
90
- // } else {
91
- // sound_music_play_editor();
92
- // }
93
- // break;
94
- }
95
-
96
82
static void main_menu_handle_input (const mouse* m, const hotkeys* h) {
97
83
ui::handle_mouse (m);
98
84
You can’t perform that action at this time.
0 commit comments