scummvm/backends
Orgad Shaneh 7a4e5612de JANITORIAL: Replace new[]/memset with new[]()
Mostly done using the following Ruby script:

(Dir.glob('**/*.cpp') + Dir.glob('**/*.h')).each do |file|
  s = File.read(file, encoding: 'iso8859-1')
  t = s.gsub(/(([\w_.\[\]]+)\s*=\s*new\s+\S+?\[[^\]]+?\](?!\())([^\{\}]*?)\n\s+memset\(\s*\2\s*,\s*0\s*,[^;]*;/m, '\1()\3')
  if t != s
    File.open(file, 'w') { |io| io.write(t) }
  end
end
2021-11-10 19:53:15 +01:00
..
audiocd AUDIO: Support using .wav files for extracted Audio CD tracks 2021-09-07 14:35:43 +03:00
cloud JANITORIAL: typos 2021-10-31 20:46:31 +01:00
dialogs BACKENDS: DIALOGS: GTK: Keep ScummVM mouse pointer alive during dialog 2021-11-09 09:45:36 +01:00
events DS: WIP virtual keyboard support 2021-11-01 16:19:15 +00:00
fs BACKENDS: Use U32String for FSNode::getDisplayName 2021-08-23 21:22:27 +01:00
graphics SURFACESDL: Implemented missing kFeatureVSync for getFeatureState() 2021-11-08 09:07:48 +01:00
graphics3d/openglsdl AMIGAOS: Replace query with correct one 2021-11-01 12:16:23 +01:00
keymapper BACKENDS: Allow activating the system virtual keyboard using the keymapper 2021-11-01 16:54:39 +01:00
log LOG: Prevent Log::printTimeStamp() from creating an event 2021-09-09 19:32:02 +02:00
midi WIN32: Make MidiDriver_WIN UNICODE compatible 2021-06-29 12:38:01 -05:00
mixer DS: Fix crash on exit 2021-08-26 17:05:14 +01:00
mutex ANDROID: Add override keywords 2020-10-14 17:48:29 +01:00
networking CLOUD: Tweak Networking::Reader pattern-matching logic 2021-11-01 12:15:27 +01:00
platform JANITORIAL: Replace new[]/memset with new[]() 2021-11-10 19:53:15 +01:00
plugins DS: Remove .ARM.exidx* and .ARM.extab* sections from plugins 2021-08-27 17:45:37 +01:00
presence/discord BACKENDS: PRESENCE: Only trigger Discord RPC if enabled in configuration 2021-09-02 14:21:07 +02:00
saves BACKENDS: Add overloadable removeFile in DefaultSaveFileManager 2021-10-10 11:39:47 +03:00
taskbar WIN32: Make Win32TaskbarManager UNICODE compatible 2021-06-29 12:38:01 -05:00
text-to-speech WIN32: Make WindowsTextToSpeechManager UNICODE compatible 2021-06-29 12:38:01 -05:00
timer ALL: Synced with ScummVM - rev: 33a47d23b8 2020-09-03 02:21:14 +02:00
updates JANITORIAL: Replace spaces in indentation with tabs 2021-04-15 21:20:36 +02:00
vkeybd BACKENDS: Explicitly use ellipsis for the virtual keybord if needed 2021-08-01 17:22:13 +02:00
base-backend.cpp BACKENDS: Add getDefaultScaler and getDefaultScaleFactor to OSystem 2021-06-23 21:29:53 +02:00
base-backend.h SDL: Begin refactoring the API for selecting scalers 2021-06-23 21:29:53 +02:00
modular-backend.cpp EVENTRECORDER: Prevent recursive call to warpMouse 2021-09-09 19:32:02 +02:00
modular-backend.h COMMON: Add getHiDPIScreenFactor to OSystem 2021-08-13 21:41:33 +01:00
module.mk OPENDINGUX: Add support for Opendingux Beta 2021-11-01 17:39:26 +01:00