Skip to content

Commit

Permalink
Bumped version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AuroraViola committed Nov 13, 2024
1 parent a77e204 commit e9dc33d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ if (${PLATFORM} MATCHES "NX")
target_link_libraries(ChillyGB EGL GLESv2 glapi drm_nouveau nx stdc++)
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/ChillyGB.ncap
COMMAND nacptool --create "ChillyGB" "AuroraViola" "v0.2.0" ${CMAKE_CURRENT_BINARY_DIR}/ChillyGB.nacp
COMMAND nacptool --create "ChillyGB" "AuroraViola" "v0.3.0" ${CMAKE_CURRENT_BINARY_DIR}/ChillyGB.nacp
DEPENDS ChillyGB
)
add_custom_target(ChillyGB_ncap ALL SOURCES ${CMAKE_CURRENT_BINARY_DIR}/ChillyGB.ncap)
Expand Down
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ float speed_mult = 1;
int ff_speed = 1;
struct nk_context *ctx;
char comboxes[2500] = "";
char version[20] = "v0.2.0";
char version[20] = "v0.3.0";
int key_order[8] = {2, 5, 3, 4, 1, 6, 0, 7};
struct nk_style_button tab_button_style = {};
struct nk_style_button tab_button_active_style = {};
Expand Down
2 changes: 1 addition & 1 deletion src/modules/savestates.c
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ void save_state(cpu *c, char rom_name[256]) {
fwrite("NAME", 4, 1, save);
value_32 = 15;
fwrite(&value_32, 4, 1, save);
fwrite("ChillyGB v0.2.0", 15, 1, save);
fwrite("ChillyGB v0.3.0", 15, 1, save);
fwrite("INFO", 4, 1, save);
value_32 = 0x12;
fwrite(&value_32, 4, 1, save);
Expand Down

0 comments on commit e9dc33d

Please sign in to comment.