From: John Tsiombikas Date: Thu, 12 Oct 2023 22:15:45 +0000 (+0300) Subject: rename to molten metal X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=commitdiff_plain;h=HEAD;p=metatoy rename to molten metal --- diff --git a/README.md b/README.md index ee2666c..dea41a3 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -metatoy -======= -Metatoy is mainly a tech demo for COM32, my experimental (and still quite buggy) -DOS protected mode kernel, which starts as a flat binary (COM file). +Molten Metal +============ +Molten metal is mainly a tech demo for COM32, my experimental (and still quite +buggy) DOS protected mode kernel, which starts as a flat binary (COM file). About the game -------------- @@ -25,7 +25,7 @@ Frankly there isn't much of a point in any of this, other than being a fun hack. License ------- -Copyright (C) John Tsiombikas +Copyright (C) 2023 John Tsiombikas This program is free software, feel free to use, modify, and/or redistribute it under the terms of the GNU General Public License v3, or at your option any @@ -34,4 +34,11 @@ details. Build ----- -You need gcc, nasm, and GNU make. If you do, just type `make`. +The data files are not included in the git repo. If you cloned the git repo, you +need to grab a copy of the data directory from the latest release archive before +building. + +To build this program you'll need gcc, nasm, and GNU make. + +Run `make` to build the native (UNIX/Windows) version, or `make -f Makefile.dos` +to build the DOS 32bit COM executable. diff --git a/src/nondos/main.c b/src/nondos/main.c index ee861d1..939d1e8 100644 --- a/src/nondos/main.c +++ b/src/nondos/main.c @@ -54,7 +54,7 @@ int main(int argc, char **argv) glutInitWindowSize(FB_WIDTH * scale, FB_HEIGHT * scale); glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE); - glutCreateWindow("metatoy"); + glutCreateWindow("Molten Metal"); glutDisplayFunc(game_draw); glutIdleFunc(idle);