Changeset 3217
- Timestamp:
- 01/16/10 15:23:14 (8 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
bin/iris2.exe (modified) (previous)
-
lua/main.lua (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lua/main.lua
r3216 r3217 35 35 function InitHomeDirInfos () 36 36 -- todo : shardlist : display shards from original dir also ? 37 if ( (not WIN32) andfile_exists(gMainWorkingDir.."USE_HOME_DIR")) then37 if (file_exists(gMainWorkingDir.."USE_HOME_DIR")) then 38 38 local home = GetHomePath() 39 39 if (not home) then return end 40 41 if (WIN32) then home = home .. "/Anwendungsdaten" end 40 42 41 43 gHomeIrisPath = home.."/.iris/" … … 57 59 mkdir(gDesktopDir) 58 60 mkdir(gPacketVideoFileName_folderpath) 61 62 print("Copy config from: " .. gMainWorkingDir.."config/" .. " to: " .. gConfigPath) 59 63 CopyDir(gMainWorkingDir.."config/",gConfigPath) 60 64 end
