Make naming more consistent

This commit is contained in:
Tony Wasserka 2024-03-12 17:31:12 +01:00
parent 7d2c663901
commit 47f69cf3c4
3 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.13)
include(ExternalProject)
project(jmavu)
project(mikage)
enable_testing()

View file

@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8
# title of most generated pages and in a few other places.
# The default value is: My Project.
PROJECT_NAME = JMaVu
PROJECT_NAME = Mikage
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
# could be handy for archiving the generated documentation or if some version

View file

@ -481,7 +481,7 @@ if (bootstrap_nand) // Experimental system bootstrapper
// SDL_AUDIO_DRIVER_DISK
//SDL_AUDIO_DRIVER_DISK;
fmt::print(stderr, "Opening SDL audio device\n");
auto device_id = SDL_OpenAudioDevice(nullptr /*"sdlaudio.raw"*/ /*"/home/tony/coding/jmavu/build/audio.raw"*/, false, &desired_audio_spec, &audio_spec, 0 /* no allowed changes; let SDL auto-convert */);
auto device_id = SDL_OpenAudioDevice(nullptr, false, &desired_audio_spec, &audio_spec, 0 /* no allowed changes; let SDL auto-convert */);
if (device_id == 0) {
throw std::runtime_error("Failed to open SDL audio device");
}