Skip to content

Commit fbe1cef

Browse files
committed
Fixed wrong project settings
1 parent 72721ce commit fbe1cef

File tree

4 files changed

+6
-25
lines changed

4 files changed

+6
-25
lines changed

QVMEditor/QUtils.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ namespace QVM_Editor
1313
{
1414
internal class QUtils
1515
{
16-
private static string logFile, appCurrPath;
16+
private static string logFile;
1717
internal const string appVersion = "0.2",qvmFile = ".qvm",qscFile = ".qsc", CAPTION_CONFIG_ERR = "Config - Error", CAPTION_FATAL_SYS_ERR = "Fatal sytem - Error", CAPTION_APP_ERR = "Application - Error", CAPTION_COMPILER_ERR = "Compiler - Error", EDITOR_LEVEL_ERR = "EDITOR ERROR";
1818
internal static bool logEnabled = false;
19-
internal static string gamePath, appdataPath, qvmEditorQEdPath, objectsModelsFile, editorAppName, qfilesPath = @"\QFiles", qEditor = "QEditor", qconv = "QConv", qCompiler = "QCompiler", qCompilerPath, tempPathFile,tempPathFileName = "TempPath.txt",
20-
igiQsc = "IGI_QSC", igiQvm = "IGI_QVM", graphsPath, cfgGamePathEx = @"\missions\location0\level", weaponsDirPath = @"\weapons";
19+
internal static string appdataPath, qvmEditorQEdPath, objectsModelsFile, editorAppName, qfilesPath = @"\QFiles", qEditor = "QEditor", qconv = "QConv", qCompiler = "QCompiler", qCompilerPath, tempPathFile,tempPathFileName = "TempPath.txt",
20+
igiQsc = "IGI_QSC", igiQvm = "IGI_QVM", cfgGamePathEx = @"\missions\location0\level", weaponsDirPath = @"\weapons";
2121
internal static string keywordsFile = "keywords.txt", objectsQsc = "objects.qsc", objectsQvm = "objects.qvm";
2222

2323
public static string appOutPath { get; internal set; }

QVMEditor/QVMEditorForm.Designer.cs

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

QVMEditor/QVMEditorForm.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ namespace QVM_Editor
1010
{
1111
public partial class QVMEditorForm : Form
1212
{
13-
internal QVMEditorForm thisReference;
1413
private string scriptFilePath = String.Empty;
1514
private string scriptFilePathAbsolute = String.Empty;
1615
internal Scintilla scintilla;
@@ -33,6 +32,9 @@ public QVMEditorForm()
3332

3433
//Loading output path.
3534
QUtils.appOutPath = QUtils.LoadFile(QUtils.tempPathFile);
35+
if (!String.IsNullOrEmpty(QUtils.appOutPath))
36+
{
37+
}
3638

3739
//Setting output path.
3840
else

QVMEditor/ScintillaNET.Demo.sln

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)