Skip to content

Commit

Permalink
Rename a file. Also fix naming frt's executable.
Browse files Browse the repository at this point in the history
  • Loading branch information
Relintai committed Apr 21, 2024
1 parent dcd8a15 commit 945f1c5
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions platform/frt/Local.mk
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
all:
@echo
@echo FRT is not meant to be compiled stand alone out of the box.
@echo You need to put it in the \"platform\" directory of godot and use
@echo You need to put it in the \"platform\" directory of pandemonium and use
@echo scons as usual.
@echo
@echo For example, from the main top level godot directory, type:
@echo For example, from the main top level pandemonium directory, type:
@echo
@echo " " scons platform=frt target=release tools=no frt_arch=pi3
@echo
Expand Down
2 changes: 1 addition & 1 deletion platform/frt/SCsub
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ if os.path.isfile('/opt/vc/include/bcm_host.h'):
if os.path.isfile('/usr/include/libdrm/drm.h'):
frt_env.Append(CCFLAGS=["-I/usr/include/libdrm"])

frt_env.Program('#bin/godot', ['godot_frt.cpp', 'os_frt.cpp', 'frt_options.cpp'] + env['FRT_MODULES'])
frt_env.Program('#bin/pandemonium', ['pandemonium_frt.cpp', 'os_frt.cpp', 'frt_options.cpp'] + env['FRT_MODULES'])
2 changes: 1 addition & 1 deletion platform/frt/frt_options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ void show_param_list() {

void usage(const char *program_name, int code = 1) {
printf("\n"
"usage: %s [godot args] [--frt [options] [param=value...]]\n"
"usage: %s [pandemonium args] [--frt [options] [param=value...]]\n"
"\n"
"options:\n"
" -v show version and exit\n"
Expand Down
2 changes: 1 addition & 1 deletion platform/frt/import/gdkeys.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/

// imported from godot (core/os/keyboard.h), adding prefixes to avoid
// imported from pandemonium (core/os/keyboard.h), adding prefixes to avoid
// clashes with the linux input api

enum { GD_SPKEY = (1 << 24) };
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*************************************************************************/
/* godot_frt.cpp */
/* pandemonium_frt.cpp */
/*************************************************************************/
/* This file is part of: */
/* PANDEMONIUM ENGINE */
Expand Down Expand Up @@ -29,7 +29,7 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/

// godot_frt.cpp
// pandemonium_frt.cpp
/*
* FRT - A Godot platform targeting single board computers
* Copyright (c) 2017-2019 Emanuele Fornara
Expand Down
2 changes: 1 addition & 1 deletion platform/frt/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ release() {
local bin
[ -d releases ] || return
bin=releases/frt_${fver}_${tag}_${arch}.bin
cp tag_$tag/bin/godot.frt.opt$extrasuffix.$arch $bin
cp tag_$tag/bin/pandemonium.frt.opt$extrasuffix.$arch $bin
$stripcmd $bin
}

Expand Down

0 comments on commit 945f1c5

Please sign in to comment.