Skip to content

Commit b2ca425

Browse files
committed
v1.3.3
1 parent f5209ed commit b2ca425

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

PopSpriteEditor/Editor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#define VERSION_MAJOR 1
88
#define VERSION_MINOR 3
9-
#define VERSION_PATCH 2
9+
#define VERSION_PATCH 3
1010

1111
#define EDITOR_VERSION STRINGIFY(VERSION_MAJOR) "." STRINGIFY(VERSION_MINOR) "." STRINGIFY(VERSION_PATCH)
1212
#define EDITOR_DATE __DATE__ " " __TIME__

PopSpriteEditor/MainForm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ int main(array<System::String^> ^args)
4747
freopen_s((FILE**)stdout, "CONOUT$", "w", stdout);
4848
freopen_s((FILE**)stdin, "CONIN$", "r", stdin);
4949
freopen_s((FILE**)stderr, "CONOUT$", "w", stderr);
50-
printf("PopSpriteEditor\n");
50+
printf("PopSpriteEditor - %s @ %s.\n", EDITOR_VERSION, EDITOR_DATE);
5151

5252
std::string palettePath = GetCurrentDir() + "pal.dat";
5353
if (!Palette::Load(palettePath))

0 commit comments

Comments
 (0)