From 594f16932cfe590ea555bab21428df64b298baa9 Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Fri, 13 Oct 2023 01:15:45 +0300 Subject: [PATCH] rename to molten metal --- README.md | 19 +++++++++++++------ src/nondos/main.c | 2 +- 2 files changed, 14 insertions(+), 7 deletions(-) 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); -- 1.7.10.4