Skip to content

Commit

Permalink
v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nukeykt committed May 10, 2023
1 parent 9712de8 commit ee9a9a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion md.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "z80.h"
#include "fc1004.h"

#define VERSION "1.0"

#define ROM_SIZE (2 * 1024 * 1024)

Expand Down Expand Up @@ -415,7 +416,7 @@ void Video_UpdateTitle(uint64_t ms)
int _s = ms / 1000;
int mn = _s / 60;
_s %= 60;
sprintf_s(buffer, sizeof(buffer), "Nuked MD [%i:%02i:%03i]", mn, _s, _ms);
sprintf_s(buffer, sizeof(buffer), "Nuked MD v" VERSION " [%i:%02i:%03i]", mn, _s, _ms);
buffer[99] = 0;

if (!vid_window)
Expand Down

0 comments on commit ee9a9a0

Please sign in to comment.