Fix comments (translation max lengths) (#196)

* fix translation max length comments

* fix comments

* fix logo address in comment
This commit is contained in:
Jan Krupička
2018-01-09 22:34:35 +01:00
committed by Ben V. Brown
parent 2281dbd5ad
commit 93869b979e
3 changed files with 32 additions and 32 deletions

View File

@@ -148,7 +148,7 @@ namespace TS100_Logo_Editor
data[i] = data[i + 1];
data[i + 1] = temp;
}
string outputHexFile = IntelHex.IntelHex.encode(data, 0x0800F800, 16, true, true);//16 bytes is the only format the DFU seems to support //0x0800B800
string outputHexFile = IntelHex.IntelHex.encode(data, 0x0800F800, 16, true, true);//16 bytes is the only format the DFU seems to support //0x0800F800
//^ This string now just needs to be written out to a text file :)
SaveFileDialog dlg = new SaveFileDialog();
dlg.Title = "Save DFU File";