Skip to content

Commit 22755d5

Browse files
committed
Increased version to 2.0 beta
1 parent f27d923 commit 22755d5

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

driveRoot/apps/RVLoader/boot.dol

0 Bytes
Binary file not shown.

main/Makefile

+4-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ endif
1010
include $(DEVKITPPC)/wii_rules
1111

1212
# Must be integers
13-
RVLOADERVERSION_MAJOR := 1
14-
RVLOADERVERSION_MINOR := 6
13+
RVLOADERVERSION_MAJOR := 2
14+
RVLOADERVERSION_MINOR := 0
15+
RVLOADERVERSION_NAME := beta
1516

1617
#---------------------------------------------------------------------------------
1718
# TARGET is the name of the output
@@ -33,7 +34,7 @@ INCLUDES := include include/titles include/gui \
3334
#---------------------------------------------------------------------------------
3435

3536
CFLAGS = -g -O2 -Wall $(MACHDEP) $(INCLUDE) -DLUA_32BITS \
36-
-DVER_MAJOR=${RVLOADERVERSION_MAJOR} -DVER_MINOR=${RVLOADERVERSION_MINOR}
37+
-DVER_MAJOR=${RVLOADERVERSION_MAJOR} -DVER_MINOR=${RVLOADERVERSION_MINOR} -DVER_NAME=\"${RVLOADERVERSION_NAME}\"
3738
CXXFLAGS = $(CFLAGS) -std=c++11
3839

3940
LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map

main/source/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ int main(int argc, char **argv) {
229229
Gfx::startDrawing();
230230
GFXWindow(pos.x, pos.y, RVLlogo.getDimensions().x, RVLlogo.getDimensions().y + 2 * textHeight) {
231231
RVLlogo.draw();
232-
font.printf(0, RVLlogo.getDimensions().y + textCenterOffsetY, "RVLoader v%u.%u", VER_MAJOR, VER_MINOR);
232+
font.printf(0, RVLlogo.getDimensions().y + textCenterOffsetY, "RVLoader v%u.%u %s", VER_MAJOR, VER_MINOR, VER_NAME);
233233
font.printf(0, RVLlogo.getDimensions().y + textCenterOffsetY + textHeight, "Loading...");
234234
}
235235
Gfx::endDrawing();

0 commit comments

Comments
 (0)