Skip to content

Commit 3b0b087

Browse files
committed
bump version to 0.2.3
1 parent 58f359e commit 3b0b087

File tree

3 files changed

+7
-20
lines changed

3 files changed

+7
-20
lines changed

src/core/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#define GAME_VERSION_MAJOR 0
44
#define GAME_VERSION_MINOR 2
5-
#define GAME_VERSION_REVSN 2
5+
#define GAME_VERSION_REVSN 3
66

77
#ifndef GAME_BUILD_NUMBER
88
#define GAME_BUILD_NUMBER 0xff

src/window/logo.h

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
#ifndef WINDOW_LOGO_H
2-
#define WINDOW_LOGO_H
1+
#pragma once
32

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+
};
58

69
void window_logo_show(int show_patch_message);
7-
8-
#endif // WINDOW_LOGO_H

src/window/main_menu.cpp

-14
Original file line numberDiff line numberDiff line change
@@ -79,20 +79,6 @@ static void main_menu_draw_foreground() {
7979
ui.draw();
8080
}
8181

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-
9682
static void main_menu_handle_input(const mouse* m, const hotkeys* h) {
9783
ui::handle_mouse(m);
9884

0 commit comments

Comments
 (0)