mirror of
https://github.com/mikage-emu/mikage-dev.git
synced 2025-01-20 04:21:08 +01:00
Make naming more consistent
This commit is contained in:
parent
7d2c663901
commit
47f69cf3c4
3 changed files with 3 additions and 3 deletions
|
@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.13)
|
|||
|
||||
include(ExternalProject)
|
||||
|
||||
project(jmavu)
|
||||
project(mikage)
|
||||
|
||||
enable_testing()
|
||||
|
||||
|
|
2
Doxyfile
2
Doxyfile
|
@ -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
|
||||
|
|
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue