Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2016-11-12 17:41:42 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2016-11-12 19:33:07 +0300
commit69288737caf4fab6c90558129772b0acaecf8863 (patch)
tree2ce93341b584b9a3994f3bf9fd56d3db85c98eb4 /intern
parent478e59a04ec8eec36217fbc0302e0fbe5ed519a9 (diff)
Fix Cycles standalone not finding CPU device after recent changes.
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/app/cycles_standalone.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/app/cycles_standalone.cpp b/intern/cycles/app/cycles_standalone.cpp
index e8168bc15ff..b21e8630cdb 100644
--- a/intern/cycles/app/cycles_standalone.cpp
+++ b/intern/cycles/app/cycles_standalone.cpp
@@ -337,7 +337,7 @@ static void options_parse(int argc, const char **argv)
/* device names */
string device_names = "";
- string devicename = "cpu";
+ string devicename = "CPU";
bool list = false;
vector<DeviceType>& types = Device::available_types();