diff options
| author | Stenzek <stenzek@gmail.com> | 2017-06-26 01:35:24 +1000 |
|---|---|---|
| committer | Stenzek <stenzek@gmail.com> | 2017-07-30 12:38:48 +1000 |
| commit | 1fccbd5be3cc3c938a325d0f9401cc1a56e68e29 (patch) | |
| tree | 5f1d8522bbe5be8b465898b9480263df65d601db /Source/Core/DolphinNoGUI/MainNoGUI.cpp | |
| parent | 334e117da70e6a7704fc9d854de0e0c07bfbd51a (diff) | |
DolphinWX: Add a progress dialog host command
Allows feedback from backends to be communicated to the user when
long-running operation are performed (e.g. shader compilation).
Diffstat (limited to 'Source/Core/DolphinNoGUI/MainNoGUI.cpp')
| -rw-r--r-- | Source/Core/DolphinNoGUI/MainNoGUI.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/DolphinNoGUI/MainNoGUI.cpp b/Source/Core/DolphinNoGUI/MainNoGUI.cpp index fc91ccac04..37860057aa 100644 --- a/Source/Core/DolphinNoGUI/MainNoGUI.cpp +++ b/Source/Core/DolphinNoGUI/MainNoGUI.cpp @@ -136,6 +136,10 @@ void Host_YieldToUI() { } +void Host_UpdateProgressDialog(const char* caption, int position, int total) +{ +} + #if HAVE_X11 #include <X11/Xlib.h> #include <X11/keysym.h> |
