From 698d7e1f9fc6b92b29ce982d2fa095c4b037585d Mon Sep 17 00:00:00 2001 From: twanvl Date: Fri, 6 Jun 2008 19:03:56 +0000 Subject: [PATCH] No age is Age(0), so we don't refresh symbols all the time git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@979 0fc631ac-6414-0410-93d0-97cfa31319b6 --- src/script/functions/image.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/functions/image.cpp b/src/script/functions/image.cpp index 0435906d..8c9701d9 100644 --- a/src/script/functions/image.cpp +++ b/src/script/functions/image.cpp @@ -169,7 +169,7 @@ SCRIPT_FUNCTION(symbol_variation) { } else { throw ScriptError(_("Unknown fill type for symbol_variation: ") + fill_type); } - return new_intrusive4(value, filename, value ? value->last_update : Age(), var); + return new_intrusive4(value, filename, value ? value->last_update : Age(0), var); } }