diff --git a/platform/frt/Local.mk b/platform/frt/Local.mk index dfc1c9c57..fec58e4c5 100644 --- a/platform/frt/Local.mk +++ b/platform/frt/Local.mk @@ -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 diff --git a/platform/frt/SCsub b/platform/frt/SCsub index 34d5884e2..9ed4926b6 100644 --- a/platform/frt/SCsub +++ b/platform/frt/SCsub @@ -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']) diff --git a/platform/frt/frt_options.cpp b/platform/frt/frt_options.cpp index f4dfea9f6..559425d10 100644 --- a/platform/frt/frt_options.cpp +++ b/platform/frt/frt_options.cpp @@ -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" diff --git a/platform/frt/import/gdkeys.h b/platform/frt/import/gdkeys.h index f71337fee..d07fd0c90 100644 --- a/platform/frt/import/gdkeys.h +++ b/platform/frt/import/gdkeys.h @@ -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) }; diff --git a/platform/frt/godot_frt.cpp b/platform/frt/pandemonium_frt.cpp similarity index 97% rename from platform/frt/godot_frt.cpp rename to platform/frt/pandemonium_frt.cpp index d2bd068e9..7e8b15cde 100644 --- a/platform/frt/godot_frt.cpp +++ b/platform/frt/pandemonium_frt.cpp @@ -1,5 +1,5 @@ /*************************************************************************/ -/* godot_frt.cpp */ +/* pandemonium_frt.cpp */ /*************************************************************************/ /* This file is part of: */ /* PANDEMONIUM ENGINE */ @@ -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 diff --git a/platform/frt/release.sh b/platform/frt/release.sh index 24ccbfa9d..72b02deb9 100755 --- a/platform/frt/release.sh +++ b/platform/frt/release.sh @@ -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 }