mirrored wiiflow r417
262
Makefile
Normal file
@ -0,0 +1,262 @@
|
|||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# Clear the implicit built in rules
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
.SUFFIXES:
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
ifeq ($(strip $(DEVKITPPC)),)
|
||||||
|
$(error "Please set DEVKITPPC in your environment. export DEVKITPPC=<path to>devkitPPC")
|
||||||
|
endif
|
||||||
|
|
||||||
|
include $(DEVKITPPC)/wii_rules
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# TARGET is the name of the output
|
||||||
|
# BUILD is the directory where object files & intermediate files will be placed
|
||||||
|
# SOURCES is a list of directories containing source code
|
||||||
|
# INCLUDES is a list of directories containing extra header files
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
TARGET := boot
|
||||||
|
BUILD := build
|
||||||
|
SOURCES := source \
|
||||||
|
source/cheats \
|
||||||
|
source/config \
|
||||||
|
source/data \
|
||||||
|
source/devicemounter \
|
||||||
|
source/gecko \
|
||||||
|
source/gui \
|
||||||
|
source/list \
|
||||||
|
source/loader \
|
||||||
|
source/channel \
|
||||||
|
source/homebrew \
|
||||||
|
source/memory \
|
||||||
|
source/menu \
|
||||||
|
source/music \
|
||||||
|
source/network \
|
||||||
|
source/unzip \
|
||||||
|
source/xml \
|
||||||
|
source/wstringEx \
|
||||||
|
source/devicemounter/libwbfs
|
||||||
|
|
||||||
|
DATA := data \
|
||||||
|
data/images \
|
||||||
|
data/sounds
|
||||||
|
|
||||||
|
INCLUDES := source \
|
||||||
|
source/cheats \
|
||||||
|
source/config \
|
||||||
|
source/devicemounter \
|
||||||
|
source/gecko \
|
||||||
|
source/gui \
|
||||||
|
source/list \
|
||||||
|
source/loader \
|
||||||
|
source/channel \
|
||||||
|
source/homebrew \
|
||||||
|
source/memory \
|
||||||
|
source/menu \
|
||||||
|
source/music \
|
||||||
|
source/network \
|
||||||
|
source/unzip \
|
||||||
|
source/wstringEx \
|
||||||
|
source/xml
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# Default build shell script options
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
ios := 249
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# options for code generation
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
CFLAGS = -g -Os -Wall $(MACHDEP) $(INCLUDE) -DHAVE_CONFIG_H
|
||||||
|
CXXFLAGS = -g -Os -Wall -Wextra -Wno-multichar $(MACHDEP) $(INCLUDE) -DHAVE_CONFIG_H
|
||||||
|
|
||||||
|
LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map,--section-start,.init=0x80A00000,-wrap,malloc,-wrap,free,-wrap,memalign,-wrap,calloc,-wrap,realloc,-wrap,malloc_usable_size -T../scripts/rvl.ld
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# any extra libraries we wish to link with the project
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
LIBS := -lpng -lm -lz -lwiiuse -lbte -lasnd -logc -lfreetype -lvorbisidec -lmad -ljpeg -lwiilight -lntfs -lfat -lext2fs -lmodplay
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# list of directories containing libraries, this must be the top level containing
|
||||||
|
# include and lib
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
LIBDIRS := $(CURDIR)/portlibs
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# no real need to edit anything past this point unless you need to add additional
|
||||||
|
# rules for different file extensions
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
ifneq ($(BUILD),$(notdir $(CURDIR)))
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
export OUTPUT := $(CURDIR)/$(TARGET)
|
||||||
|
|
||||||
|
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
|
||||||
|
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
|
||||||
|
|
||||||
|
export DEPSDIR := $(CURDIR)/$(BUILD)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# automatically build a list of object files for our project
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
SVNREV := $(shell bash ./scripts/svnrev.sh)
|
||||||
|
|
||||||
|
export CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
|
||||||
|
export CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
|
||||||
|
|
||||||
|
sFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
|
||||||
|
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.S)))
|
||||||
|
|
||||||
|
BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.bin)))
|
||||||
|
TTFFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.ttf)))
|
||||||
|
PNGFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.png)))
|
||||||
|
|
||||||
|
MP3FILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.mp3)))
|
||||||
|
OGGFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.ogg)))
|
||||||
|
PCMFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.pcm)))
|
||||||
|
WAVFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.wav)))
|
||||||
|
|
||||||
|
DOLFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.dol)))
|
||||||
|
ELFFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.elf)))
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# use CXX for linking C++ projects, CC for standard C
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
ifeq ($(strip $(CPPFILES)),)
|
||||||
|
export LD := $(CC)
|
||||||
|
else
|
||||||
|
export LD := $(CXX)
|
||||||
|
endif
|
||||||
|
|
||||||
|
export OFILES := $(CPPFILES:.cpp=.o) $(CFILES:.c=.o) \
|
||||||
|
$(sFILES:.s=.o) $(SFILES:.S=.o) \
|
||||||
|
$(TTFFILES:.ttf=.ttf.o) $(PNGFILES:.png=.png.o) $(DOLFILES:.dol=.dol.o) \
|
||||||
|
$(OGGFILES:.ogg=.ogg.o) $(PCMFILES:.pcm=.pcm.o) $(MP3FILES:.mp3=.mp3.o) \
|
||||||
|
$(WAVFILES:.wav=.wav.o) $(ELFFILES:.elf=.elf.o) $(BINFILES:.bin=.bin.o)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# build a list of include paths
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
export INCLUDE := $(foreach dir,$(INCLUDES), -I$(CURDIR)/$(dir)) \
|
||||||
|
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
|
||||||
|
-I$(CURDIR)/$(BUILD) \
|
||||||
|
-I$(LIBOGC_INC)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# build a list of library paths
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) \
|
||||||
|
-L$(LIBOGC_LIB)
|
||||||
|
|
||||||
|
export OUTPUT := $(CURDIR)/$(TARGET)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
.PHONY: $(BUILD) all clean run
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
$(BUILD):
|
||||||
|
@echo Building for IOS $(ios).
|
||||||
|
@bash ./scripts/buildtype.sh $(ios)
|
||||||
|
@[ -d $@ ] || mkdir -p $@
|
||||||
|
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
clean:
|
||||||
|
@echo clean ...
|
||||||
|
@rm -fr $(BUILD) $(OUTPUT).elf $(OUTPUT).dol
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
run:
|
||||||
|
wiiload $(TARGET).dol
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
gdb:
|
||||||
|
@echo Loading GDB with symbols from boot.elf, type quit to exit.
|
||||||
|
@powerpc-eabi-gdb boot.elf
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
addr:
|
||||||
|
@echo Loading addr2line with symbols from boot.elf..
|
||||||
|
@echo Press ctrl+c to exit.
|
||||||
|
@echo Enter an address from the stack dump:
|
||||||
|
@powerpc-eabi-addr2line -f -e boot.elf
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
else
|
||||||
|
|
||||||
|
DEPENDS := $(OFILES:.o=.d)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# main targets
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
$(OUTPUT).dol: $(OUTPUT).elf
|
||||||
|
$(OUTPUT).elf: $(OFILES) alt_ios_gen.o
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
$(BUILD)/alt_ios_gen.o: alt_ios_gen.c
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# This rule links in binary data with the .png extension
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.png.o : %.png
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# This rule links in binary data with the .ttf extension
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.ttf.o : %.ttf
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# This rule links in binary data with the .ogg extension
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.ogg.o : %.ogg
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# This rule links in binary data with the .pcm extension
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.pcm.o : %.pcm
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# This rule links in binary data with the .wav extension
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.wav.o : %.wav
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# This rule links in binary data with the .mp3 extension
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.mp3.o : %.mp3
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# This rule links in binary data with the .bin extension
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.bin.o : %.bin
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# This rule links in binary data with the .dol extension
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.dol.o : %.dol
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# This rule links in binary data with the .elf extension
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.elf.o : %.elf
|
||||||
|
@echo $(notdir $<)
|
||||||
|
@bin2s -a 32 $< | $(AS) -o $(@)
|
||||||
|
|
||||||
|
-include $(DEPENDS)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
endif
|
||||||
|
#---------------------------------------------------------------------------------
|
BIN
data/app_booter.bin
Normal file
BIN
data/images/background.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
data/images/balanceboard.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
data/images/balanceboardR.png
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
data/images/btnchannel.png
Normal file
After Width: | Height: | Size: 7.2 KiB |
BIN
data/images/btnchannels.png
Normal file
After Width: | Height: | Size: 7.5 KiB |
BIN
data/images/btnconfig.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
data/images/btnconfigs.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
data/images/btndvd.png
Normal file
After Width: | Height: | Size: 7.1 KiB |
BIN
data/images/btndvds.png
Normal file
After Width: | Height: | Size: 7.6 KiB |
BIN
data/images/btngamecfg.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
data/images/btngamecfgs.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
data/images/btnhomebrew.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
data/images/btninfo.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
data/images/btninfos.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
data/images/btnminus.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
data/images/btnminuss.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
data/images/btnnext.png
Normal file
After Width: | Height: | Size: 6.0 KiB |
BIN
data/images/btnnexts.png
Normal file
After Width: | Height: | Size: 8.3 KiB |
BIN
data/images/btnplus.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
data/images/btnpluss.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
data/images/btnprev.png
Normal file
After Width: | Height: | Size: 6.0 KiB |
BIN
data/images/btnprevs.png
Normal file
After Width: | Height: | Size: 8.3 KiB |
BIN
data/images/btnquit.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
data/images/btnquits.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
data/images/btnusb.png
Normal file
After Width: | Height: | Size: 7.4 KiB |
BIN
data/images/btnusbs.png
Normal file
After Width: | Height: | Size: 7.8 KiB |
BIN
data/images/butcenter.png
Normal file
After Width: | Height: | Size: 563 B |
BIN
data/images/butleft.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
data/images/butright.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
data/images/butscenter.png
Normal file
After Width: | Height: | Size: 496 B |
BIN
data/images/butsleft.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
data/images/butsright.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
data/images/cero_a.png
Normal file
After Width: | Height: | Size: 7.3 KiB |
BIN
data/images/cero_b.png
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
data/images/cero_c.png
Normal file
After Width: | Height: | Size: 7.6 KiB |
BIN
data/images/cero_d.png
Normal file
After Width: | Height: | Size: 7.1 KiB |
BIN
data/images/cero_z.png
Normal file
After Width: | Height: | Size: 6.8 KiB |
BIN
data/images/classiccontroller.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
data/images/dancepad.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
data/images/dancepadR.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
data/images/delete.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
data/images/deletes.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
data/images/drums.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
data/images/drumsR.png
Normal file
After Width: | Height: | Size: 7.0 KiB |
BIN
data/images/dvdskin.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
data/images/dvdskin_black.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
data/images/dvdskin_red.png
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
data/images/error.png
Normal file
After Width: | Height: | Size: 6.0 KiB |
BIN
data/images/esrb_ao.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
data/images/esrb_e.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
data/images/esrb_ec.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
data/images/esrb_eten.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
data/images/esrb_m.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
data/images/esrb_t.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
data/images/favoritesoff.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
data/images/favoritesoffs.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
data/images/favoriteson.png
Normal file
After Width: | Height: | Size: 4.8 KiB |
BIN
data/images/favoritesons.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
data/images/flatloading.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
data/images/flatnopic.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
data/images/gcncontroller.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
data/images/generic_point.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
data/images/guitar.png
Normal file
After Width: | Height: | Size: 5.5 KiB |
BIN
data/images/guitarR.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
data/images/loading.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
data/images/microphone.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
data/images/microphoneR.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
data/images/motionplus.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
data/images/motionplusR.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
data/images/nopic.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
data/images/norating.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
data/images/nunchuk.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
data/images/nunchukR.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
data/images/pbarcenter.png
Normal file
After Width: | Height: | Size: 245 B |
BIN
data/images/pbarcenters.png
Normal file
After Width: | Height: | Size: 158 B |
BIN
data/images/pbarleft.png
Normal file
After Width: | Height: | Size: 357 B |
BIN
data/images/pbarlefts.png
Normal file
After Width: | Height: | Size: 442 B |
BIN
data/images/pbarright.png
Normal file
After Width: | Height: | Size: 350 B |
BIN
data/images/pbarrights.png
Normal file
After Width: | Height: | Size: 391 B |
BIN
data/images/pegi_12.png
Normal file
After Width: | Height: | Size: 6.0 KiB |
BIN
data/images/pegi_16.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
data/images/pegi_18.png
Normal file
After Width: | Height: | Size: 6.4 KiB |
BIN
data/images/pegi_3.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
data/images/pegi_7.png
Normal file
After Width: | Height: | Size: 6.0 KiB |
BIN
data/images/player1_point.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
data/images/player2_point.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
data/images/player3_point.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
data/images/player4_point.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
data/images/stopkidoff.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
data/images/stopkidoffs.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
data/images/stopkidon.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
data/images/stopkidons.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
data/images/wait_01.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
data/images/wait_02.png
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
data/images/wait_03.png
Normal file
After Width: | Height: | Size: 6.4 KiB |
BIN
data/images/wait_04.png
Normal file
After Width: | Height: | Size: 6.5 KiB |
BIN
data/images/wait_05.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
data/images/wait_06.png
Normal file
After Width: | Height: | Size: 6.2 KiB |