From b31bf6be17a014eaa9603af4563388070ce3ed73 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 18 Sep 2015 14:03:25 +0100 Subject: [PATCH] Make out-of-memory error message a bit more informative. --- src/lib/job.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/job.cc b/src/lib/job.cc index c4632a83c..c228defc5 100644 --- a/src/lib/job.cc +++ b/src/lib/job.cc @@ -133,7 +133,7 @@ Job::run_wrapper () } catch (std::bad_alloc& e) { - set_error (_("Out of memory"), _("There was not enough memory to do this.")); + set_error (_("Out of memory"), _("There was not enough memory to do this. If you are running a 32-bit operating system try reducing the number of encoding threads in the General tab of Preferences.")); set_progress (1); set_state (FINISHED_ERROR); -- 2.30.2