-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #274 from DigiDwrf/develop
Mouse support
- Loading branch information
Showing
10 changed files
with
799 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
ifeq ($(strip $(PVSNESLIB_HOME)),) | ||
$(error "Please create an environment variable PVSNESLIB_HOME by following this guide: https://github.com/alekmaul/pvsneslib/wiki/Installation") | ||
endif | ||
|
||
include ${PVSNESLIB_HOME}/devkitsnes/snes_rules | ||
|
||
.PHONY: bitmaps all | ||
|
||
#--------------------------------------------------------------------------------- | ||
# ROMNAME is used in snes_rules file | ||
export ROMNAME := mouse | ||
|
||
all: bitmaps $(ROMNAME).sfc | ||
|
||
clean: cleanBuildRes cleanRom cleanGfx | ||
|
||
#--------------------------------------------------------------------------------- | ||
pvsneslibfont.pic: pvsneslibfont.bmp | ||
@echo convert font with no tile reduction ... $(notdir $@) | ||
$(GFXCONV) -s 8 -o 2 -u 16 -p -t bmp -i $< | ||
|
||
cursor.pic: cursor.png | ||
@echo convert sprites ... $(notdir $@) | ||
$(GFXCONV) -s 16 -o 48 -u 16 -p -t png -i $< | ||
|
||
buttons.pic: buttons.png | ||
@echo convert graphics ... $(notdir $@) | ||
$(GFXCONV) -s 8 -o 7 -u 16 -p -e 1 -m -t png -i $< | ||
|
||
bitmaps : pvsneslibfont.pic cursor.pic buttons.pic |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.