Clone magic: Don't operate in "novice" mode

This commit is contained in:
Bill Kendrick 2023-12-29 15:42:04 -08:00
parent 8a71895bda
commit d21a4a7a34
2 changed files with 11 additions and 1 deletions

View file

@ -95,10 +95,15 @@ void clone_set_size(magic_api * api, int which, int mode, SDL_Surface * canvas,
SDL_Rect * update_rect);
// No setup required:
int clone_init(magic_api * api, Uint8 disabled_features ATTRIBUTE_UNUSED, Uint8 complexity_level ATTRIBUTE_UNUSED)
int clone_init(magic_api * api, Uint8 disabled_features ATTRIBUTE_UNUSED, Uint8 complexity_level)
{
char fname[1024];
if (complexity_level == MAGIC_COMPLEXITY_NOVICE) {
/* Clone tool not available in "novice" mode */
return(0);
}
snprintf(fname, sizeof(fname), "%ssounds/magic/clone_start.ogg", api->data_directory);
clone_start_snd = Mix_LoadWAV(fname);
@ -119,6 +124,7 @@ Uint32 clone_api_version(void)
// We have multiple tools:
int clone_get_tool_count(magic_api * api ATTRIBUTE_UNUSED)
{
printf("CLONE TOOL COUNT\n");
return (NUM_TOOLS);
}