From a9237bc1dde9ad39ab7188a56f00f93430fd2c02 Mon Sep 17 00:00:00 2001 From: Marc Di Luzio Date: Sun, 3 Feb 2019 15:30:55 +0000 Subject: [PATCH] Add ERROR to some error messages --- daemon/gamemode-gpu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon/gamemode-gpu.c b/daemon/gamemode-gpu.c index 5385acd..c3ce02c 100644 --- a/daemon/gamemode-gpu.c +++ b/daemon/gamemode-gpu.c @@ -75,7 +75,7 @@ int game_mode_initialise_gpu(GameModeConfig *config, GameModeGPUInfo **info) /* verify device ID */ if (new_info->device == -1) { - LOG_ERROR("Invalid gpu_device value set in configuration, will not apply optimisations!\n"); + LOG_ERROR("ERROR: Invalid gpu_device value set in configuration, will not apply optimisations!\n"); free(new_info); return -1; } @@ -84,7 +84,7 @@ int game_mode_initialise_gpu(GameModeConfig *config, GameModeGPUInfo **info) if (!(new_info->vendor == Vendor_NVIDIA || new_info->vendor == Vendor_AMD || new_info->vendor == Vendor_Intel)) { LOG_ERROR( - "Invalid gpu_vendor value (0x%04x) set in configuration, will not apply " + "ERROR: Invalid gpu_vendor value (0x%04x) set in configuration, will not apply " "optimisations!\n", (unsigned int)new_info->vendor); LOG_ERROR("Possible values are: 0x%04x (NVIDIA) 0x%04x (AMD) 0x%04x (Intel)\n",